home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Windows Selection
/
Windows Selection 1.iso
/
Programmer's Utilities
/
Freeman Installer
/
strlines.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-04-10
|
316 b
|
24 lines
#define __STRLINES_H
class strlines
{
char *q;
char *p;
public:
strlines()
{
q = 0;
p = 0;
}
int hasmore();
int getnolines(char s[]);
void start(char s[]);
void proceed();
void peek(char b[]);
void getline(char s[], int i, char line[]);
};